home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 May / PC Answers CD-ROM 7 (Future Publishing) (May 1995).iso / vbits / code / shaw / vbits32 / makehelp.bat < prev    next >
Encoding:
DOS Batch File  |  1994-12-13  |  1003 b   |  26 lines

  1. @echo off
  2. REM -- First make map file from Microsoft Visual C++ generated resource.h
  3. echo // MAKEHELP.BAT generated Help Map file.  Used by VBITS32.HPJ. >hlp\vbits32.hm
  4. echo. >>hlp\vbits32.hm
  5. echo // Commands (ID_* and IDM_*) >>hlp\vbits32.hm
  6. makehm ID_,HID_,0x10000 IDM_,HIDM_,0x10000 resource.h >>hlp\vbits32.hm
  7. echo. >>hlp\vbits32.hm
  8. echo // Prompts (IDP_*) >>hlp\vbits32.hm
  9. makehm IDP_,HIDP_,0x30000 resource.h >>hlp\vbits32.hm
  10. echo. >>hlp\vbits32.hm
  11. echo // Resources (IDR_*) >>hlp\vbits32.hm
  12. makehm IDR_,HIDR_,0x20000 resource.h >>hlp\vbits32.hm
  13. echo. >>hlp\vbits32.hm
  14. echo // Dialogs (IDD_*) >>hlp\vbits32.hm
  15. makehm IDD_,HIDD_,0x20000 resource.h >>hlp\vbits32.hm
  16. echo. >>hlp\vbits32.hm
  17. echo // Frame Controls (IDW_*) >>hlp\vbits32.hm
  18. makehm IDW_,HIDW_,0x50000 resource.h >>hlp\vbits32.hm
  19. REM -- Make help for Project VBITS32
  20.  
  21. echo Building Win32 Help files
  22. call hc31 vbits32.hpj
  23. if exist windebug copy vbits32.hlp windebug
  24. if exist winrel copy vbits32.hlp winrel
  25. EndLocal
  26.